home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / toolbox1.h < prev    next >
C/C++ Source or Header  |  1990-09-06  |  297b  |  16 lines

  1. /* toolbox1.h: An include header file, In Microsoft QuickC.
  2.  
  3. This demonstates toolbox1.c, tooltest.c and addup.c programs.
  4. This is prototypes and definitions for the toolbox.
  5.  
  6. */
  7.  
  8. #ifndef TOOLBOX1_DEFINED
  9.  
  10. int add( int, int );
  11. int sub( int, int );
  12.  
  13. #define TOOLBOX1_DEFINED
  14. #endif
  15.  
  16.